home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
inites
/
aboutbox.frm
next >
Wrap
Text File
|
1995-05-02
|
6KB
|
158 lines
VERSION 2.00
Begin Form AboutBox
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "ABOUT TESTINI"
ClientHeight = 1635
ClientLeft = 4290
ClientTop = 3135
ClientWidth = 4845
ClipControls = 0 'False
FontBold = -1 'True
FontItalic = 0 'False
FontName = "System"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 2040
HelpContextID = 100
Left = 4230
LinkMode = 1 'Source
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1635
ScaleWidth = 4845
Top = 2790
Width = 4965
Begin SSPanel Panel3D3
Alignment = 1 'Left Justify - MIDDLE
BackColor = &H00C0C0C0&
BevelOuter = 0 'None
Caption = "Compuserve: 100412,2653"
Font3D = 0 'None
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 195
Index = 2
Left = 1260
TabIndex = 5
Top = 930
Width = 2835
End
Begin SSPanel Panel3D3
Alignment = 1 'Left Justify - MIDDLE
BackColor = &H00C0C0C0&
BevelOuter = 0 'None
Caption = "Christophe Tricaud"
Font3D = 0 'None
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 225
Index = 1
Left = 1260
TabIndex = 6
Top = 720
Width = 1935
End
Begin CommandButton Cmd_Ok
Cancel = -1 'True
Caption = "&Ok"
Default = -1 'True
Height = 360
Left = 3300
TabIndex = 2
Top = 1200
Width = 1500
End
Begin SSPanel Panel3D3
Alignment = 1 'Left Justify - MIDDLE
BackColor = &H00C0C0C0&
BevelOuter = 0 'None
Caption = "⌐ TISOFT 1993 - 1994"
Font3D = 0 'None
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 195
Index = 0
Left = 1080
TabIndex = 3
Top = 540
Width = 2835
End
Begin SSPanel Panel3D1
BackColor = &H00C0C0C0&
BevelOuter = 1 'Inset
Font3D = 0 'None
Height = 735
Left = 180
TabIndex = 4
Top = 270
Width = 795
Begin PictureBox Pic_ApplicationIcon
AutoSize = -1 'True
BackColor = &H00C0C0C0&
BorderStyle = 0 'None
Enabled = 0 'False
Height = 480
HelpContextID = 2
Left = 150
Picture = ABOUTBOX.FRX:0000
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 1
Top = 150
Width = 480
End
End
Begin Line lin_HorizontalLine1
BorderWidth = 2
X1 = 1170
X2 = 4680
Y1 = 480
Y2 = 480
End
Begin Label Lbl_IconWorks
BackColor = &H00C0C0C0&
Caption = "TESTINI for WIN 3.1"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 450
Left = 1140
TabIndex = 0
Top = 60
Width = 3870
End
End
' ''
' '
'Permet d'afficher la boεte AboutBox ''
' '
' '
Sub Cmd_OK_Click ()
Unload AboutBox
End Sub
Sub Form_Load ()
' Center the AboutBox on the screen
Move (Screen.Width - Width) \ 2, (Screen.Height - Height) \ 2
End Sub